iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 15
1
自我挑戰組

學習30天的c++系列 第 15

DAY15 學習30天的c++

  • 分享至 

  • xImage
  •  

輸出函數
cout:螢幕輸出函數,<<為串列函數(stream output)運算符號講指定變數中的資料或字串常數資料依序向輸出設備移出,在此是依序輸出到螢幕上。輸出時可利用endl函數控制跳行或輸出特殊文字與控制碼。
以下範例的第三式輸出串列含字串、變數、與控制碼,所以使用三個串列輸出(<<)分別輸出字串、變數、控制碼。endl(end of line)為結束輸出行,下一次輸出跳下一行。

cout << numl ;                  //顯示變數numl的值
cout << "ANSI"                   //顯字串ANSI/ISO C++
cout << "有號整數 :"  << numl << endl;   //顯示字串、數值、跳行

一個cout:

#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
	cout << "想要PS5";
	system("PAUSE");
	return 0;
}

輸出結果:
https://ithelp.ithome.com.tw/upload/images/20200927/201306580sE4Genqpv.png

二個cout:

#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
	cout << "想要PS5";
	cout << "全球的男人都開始做家事。";
	system("PAUSE");
	return 0;
}

輸出結果:
https://ithelp.ithome.com.tw/upload/images/20200927/20130658gNKFR5WxAt.png
在輸出函數上能輸入一些話在裡面挺有趣的 ,這只是基本的城市而已把我輸入的字出現在命令提示字元。


上一篇
DAY14 學習30天的c++
下一篇
DAY 16 學習30天的c++
系列文
學習30天的c++30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言